Spread Windows Forms 17
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet Namespace / CellMatrix<T> Class / InsertRows Method
Row index of row after which to add rows
Number of rows to add


In This Topic
    InsertRows Method (CellMatrix<T>)
    In This Topic
    Adds rows of cells after the specified row.
    Syntax
    'Declaration
     
    
    Public Overridable Sub InsertRows( _
       ByVal row As Integer, _
       ByVal rowCount As Integer _
    ) 
    'Usage
     
    
    Dim instance As CellMatrix(Of T)
    Dim row As Integer
    Dim rowCount As Integer
     
    instance.InsertRows(row, rowCount)
    public virtual void InsertRows( 
       int row,
       int rowCount
    )

    Parameters

    row
    Row index of row after which to add rows
    rowCount
    Number of rows to add
    See Also